From: Andreas Schwab Date: Sun, 8 Apr 2012 21:14:30 +0000 (+0200) Subject: * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10^2~3526 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f17846357a5b00985131f1766dc705efa995191f;p=emacs.git * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure proper alignment. --- diff --git a/src/ChangeLog b/src/ChangeLog index 1979205ea29..3274b5674bc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-04-08 Andreas Schwab + + * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure + proper alignment. + 2012-04-07 Juanma Barranquero * xml.c (init_libxml2_functions) [WINDOWSNT]: diff --git a/src/lisp.h b/src/lisp.h index 62695f15644..6041cad0d3f 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1134,6 +1134,8 @@ struct Lisp_Symbol special (with `defvar' etc), and shouldn't be lexically bound. */ unsigned declared_special : 1; + unsigned spacer : 23; + /* The symbol's name, as a Lisp string. The name "xname" is used to intentionally break code referring to the old field "name" of type pointer to struct Lisp_String. */